home *** CD-ROM | disk | FTP | other *** search
/ Mastering Web Site Development / Microsoft Mastering Web Site Development (Microsoft) (1997).iso / Media / Ch03 / W03D015.cc2 < prev    next >
Text File  |  1997-04-24  |  2KB  |  41 lines

  1. 0, In this demonstration, you will see how to use 
  2. 5, Data View to modify the structure of a database. From 
  3. 9, Data View, you can modify the design of existing 
  4. 13, database items and create new items. To change the 
  5. 17, design of a table, right-click the table and click 
  6. 20, Design. Table information is displayed in a 
  7. 24, grid. You can change the definition of existing 
  8. 27, columns. For example, I'll change the data type of StudentID 
  9. 32, to smallint. To add a new column, type the 
  10. 36, information at the end of the grid. To change general 
  11. 42, properties of your table, click the Properties icon on 
  12. 46, the table toolbar. From the Table tab, you can set 
  13. 51, constraints for the table. For example, the 
  14. 54, Enrollment table has a constraint that the grade must be 
  15. 58, between 0 and 4. I can edit this constraint or 
  16. 63, click New to add a new constraint. From the 
  17. 67, Relationship tab, you can specify how columns in this table 
  18. 72, are related to other tables. From the Index/Keys 
  19. 77, tab, you can create new indexes or modify attributes 
  20. 82, of existing indexes. All of the changes you make to 
  21. 90, a table are saved until you close the table 
  22. 93, design window. To save changes to an SQL script, click 
  23. 98, the Save Change Script icon. Visual InterDev 
  24. 103, generates the SQL script and saves this information into 
  25. 107, a text file. At a later date, you can use a tool, 
  26. 112, such as ISQL, to apply this script to a database to 
  27. 116, apply your changes. When you close the data design 
  28. 122, window, you are prompted whether to apply your 
  29. 124, changes. I'll click No, to not save my changes. If you 
  30. 129, have made changes that would affect other tables 
  31. 132, as well, you are prompted to save those 
  32. 135, changes. I'll click No. In addition to modifying the table 
  33. 140, design, you can modify a stored procedure. To modify a 
  34. 144, stored procedure, right-click the procedure and 
  35. 147, click Open. You can also create new items for a SQL 
  36. 153, Server database. From the Insert menu, click New 
  37. 157, Database Item, and select the type of item you want to 
  38. 160, create. So in this demonstration, you have seen how 
  39. 166, to use the Data View tab to modify the structure 
  40. 170, of a database.
  41. 174, END